home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / CORELEFT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  196 b   |  9 lines

  1. /* coreleft.c --- p. 129 */
  2. #include <stdio.h>
  3. #include <alloc.h>
  4. main()
  5. {
  6.     unsigned long mem_avail;
  7.     mem_avail = coreleft();
  8.     printf("%lu bytes available for allocation\n", mem_avail);
  9. }